home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software of the Month Club 2000 October
/
Software of the Month - Ultimate Collection Shareware 277.iso
/
pc
/
PROGRAMS
/
UTILITY
/
WINLINUX
/
DATA1.CAB
/
usr_-_Usr_Files
/
BIN
/
MWI
< prev
next >
Wrap
Text File
|
1999-09-17
|
311b
|
20 lines
#!/bin/sh
# test which words in all caps end a NAME section in a (compressed) cat page
#
# Found so far:
#
# SYNOPSIS
# SYNOPOSIS
# SYSTEM V SYNOPSIS
# SYNTAX
# DESCRIPTION
# COMMAND
# OVERVIEW
# STRUCTURES
# INTRODUCTION
#
for i in *
do
zcat $i | col -bx | sed '1,/^NAME/d; /^[A-Z][A-Z]/q' | tail -1
done